home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000094_news@columbia.edu _Wed Jan 22 17:50:52 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  5KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA10487
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 22 Jan 1997 17:50:51 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id RAA07672
  7.     for kermit.misc@watsun; Wed, 22 Jan 1997 17:50:51 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Kermit 95 1.1.10 for Alpha/NT and other news
  12. Date: 22 Jan 1997 22:50:49 GMT
  13. Organization: Columbia University
  14. Lines: 101
  15. Message-ID: <5c65k9$g8m$1@apakabar.cc.columbia.edu>
  16. NNTP-Posting-Host: watsun.cc.columbia.edu
  17. Xref: news.columbia.edu comp.protocols.kermit.misc:6446
  18.  
  19.  
  20. Our Alpha is fixed and the upgrade patch for Kermit 95 1.1.10 is now
  21. available for Alpha NT:
  22.  
  23.   http://www.columbia.edu/kermit/k95patch.html
  24.   ftp://kermit.columbia.edu/kermit/k95/patches/wa11{7,8,9}-10.exe
  25.  
  26. Meanwhile, since version 1.1.10 was released, the inevitable handful of
  27. bugs has appeared -- some old but never noticed before, a couple new.
  28. Briefly summarized, they are:
  29.  
  30.  . Unwanted alert box from K95CINIT
  31.  . Problems when switching from VT to ANSI terminal type
  32.  . Using SCOANSI emulation with SCO hosts
  33.  . Environment variables are not case sensitive
  34.  . Data loss in dialup host mode
  35.  . Problems with automatic login from certain Dialer entries
  36.  . Problems with arrow keys and command recall in certain emulations
  37.  . Misleading Dialer error message about screen dimensions
  38.  . How to disable scrollback
  39.  . Wildcard sends don't work right in XYZMODEM
  40.  . Changes in the operation of the numeric keypad
  41.  . DEC NRCs are forgotten in Multinational Mode
  42.  
  43. These are described and, in most cases, workarounds are given, in the
  44. newbugs.doc file in kermit/k95 on kermit.columbia.edu:
  45.  
  46.   ftp://kermit.columbia.edu/kermit/k95/newbugs.doc
  47.  
  48. You can also visit this file in your Web browser:
  49.  
  50.   http://www.columbia.edu/kermit/k95news.html
  51.  
  52. Some of these items are not actually bugs, but changes (improvments) in
  53. behavior.  But they have evidently caused a lot of confusion.  The
  54. descriptions of two most confusing ones are reproduced below:
  55.  
  56. 253. Using SCOANSI emulation with SCO hosts
  57.  
  58. There is a type of terminal emulation commonly called ANSI, which is used by
  59. BBS's.  It is very simple -- essentially nothing more than what you get with
  60. ANSI.SYS on a PC.  Then there is the highly evolved and complex version of it
  61. used on the SCO (and Linux) console.  Kermit 95 supports both; the first
  62. emulation is called ANSI; the second is called SCOANSI.  However, the *name*
  63. SCOANSI is unknown on SCO systems.  They call it just ANSI.  So if a Telnet
  64. client such as Kermit 95 comes in announcing its terminal type as SCOANSI, the
  65. SCO host doesn't recognize it.  In Kermit 95 1.1.8 and later, the Telnet
  66. terminal-type negotiation feature will cause Kermit 95 to change to another
  67. terminal type, most likely "plain old" ANSI.  To work around this problem in
  68. Kermit 95:
  69.  
  70.   set terminal type scoansi
  71.   set telnet terminal-type ansi
  72.   set terminal character-set transparent
  73.  
  74. Or on the SCO system:
  75.  
  76.   Copy the /usr/lib/terminfo/terminfo.src entry for ansi to an scoansi.src
  77.   file, changing "ansi" to "scoansi" in that file, and then run tic on it.  In
  78.   /etc/termcap, make a copy of the "ansi" entry, but call it scoansi.
  79.  
  80. There is presently no entry for "telnet terminal type" in the Dialer.
  81. This will probably be added in a future release.
  82.  
  83. 261. Changes in the operation of the numeric keypad (K)
  84.  
  85. In VT220 and VT320 emulation, the PC's numeric keypad is mapped by default
  86. to the VT terminal's numeric keypad.  Prior to version 1.1.10, however, this
  87. was not true for VT100 and VT102.  But the numeric keypad functions are just
  88. as important in VT100/102 emulation as they are in VT220/320, and a lot of
  89. users of VT100/102 emulation complained that the numeric keypad didn't work
  90. right.  So in version 1.1.10, the VT100/102 numeric keypad was mapped the
  91. same as the VT220/320 numeric keypad.
  92.  
  93. However, this change (like all changes) surprised other people who had become
  94. accustomed to the previous VT100/102 mapping, which was the same as the
  95. mapping for the editing and arrow keys with the same labels.
  96.  
  97. If you want to restore the previous mapping, add the following to your
  98. K95CUSTOM.INI file:
  99.  
  100.   SET TERMINAL KEY VT100 \290 \Kdnscn
  101.   SET TERMINAL KEY VT100 \291 \Kendscn
  102.   SET TERMINAL KEY VT100 \292 \Khomscn
  103.   SET TERMINAL KEY VT100 \293 \Klfarr
  104.   SET TERMINAL KEY VT100 \294 \Kuparr
  105.   SET TERMINAL KEY VT100 \295 \Krtarr
  106.   SET TERMINAL KEY VT100 \296 \Kdnarr
  107.   SET TERMINAL KEY VT100 \302 \{127}
  108.   SET TERMINAL KEY VT100 \400 \Kignore
  109.   SET TERMINAL KEY VT100 \2411 {-}
  110.   SET TERMINAL KEY VT100 \4143 /
  111.   SET TERMINAL KEY VT100 \4365 \{13}
  112.   SET TERMINAL KEY VT100 \4463 /
  113.   SET TERMINAL KEY VT100 \4496 \Kignore
  114.   SET TERMINAL KEY VT100 \4543 /
  115.  
  116. Replace VT100 with VT102 or other terminal type that you want to have these
  117. definitions on the numeric keypad.
  118.  
  119. - Frank